home *** CD-ROM | disk | FTP | other *** search
/ J-Mac Electronics & Home Comics / J-Mac Electronics & Home Comics.iso / mac / J-MAC / G20F / G20_SHIO.Dxr / 00077_Mstart.ls < prev    next >
Encoding:
Text File  |  1998-01-22  |  802 b   |  47 lines

  1. global originalv, gno, jumplista, jumplistz
  2.  
  3. on startMovie
  4.   set mycursor to [71, 72]
  5.   repeat with i = 8 to 16
  6.     set the cursor of sprite i to mycursor
  7.   end repeat
  8.   set jumplista to ["a1", "a2", "a3", "a4", "a5", "a6"]
  9.   set jumplistz to ["z1", "z2", "z3", "z4", "z5", "z6"]
  10.   if the soundEnabled = 0 then
  11.     set the soundEnabled to 1
  12.   end if
  13. end
  14.  
  15. on donexta
  16.   if (gno + 1) = 7 then
  17.     set gno to 0
  18.   end if
  19.   go(getAt(jumplista, gno + 1))
  20. end
  21.  
  22. on dobacka
  23.   if (gno - 1) = 0 then
  24.     set gno to 7
  25.   end if
  26.   go(getAt(jumplista, gno - 1))
  27. end
  28.  
  29. on donextz
  30.   if (gno + 1) = 7 then
  31.     set gno to 0
  32.   end if
  33.   go(getAt(jumplistz, gno + 1))
  34. end
  35.  
  36. on dobackz
  37.   if (gno - 1) = 0 then
  38.     set gno to 7
  39.   end if
  40.   go(getAt(jumplistz, gno - 1))
  41. end
  42.  
  43. on doexit
  44.   sound stop 1
  45.   go("M2", "@::JMACMENU")
  46. end
  47.